home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / KeyboardPlugin.idl < prev    next >
Text File  |  1996-05-01  |  2KB  |  79 lines

  1. /*
  2.      File:        KeyboardPlugin.idl
  3.  
  4.      Contains:    Required interface for Keyboard Family-Plugins
  5.  
  6.      Version:    Technology:    
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __KEYBOARDPLUGIN_IDL__
  19. #define __KEYBOARDPLUGIN_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __TYPES_IDL__
  25. #include <Types.idl>
  26. #endif
  27. #ifndef __KEYBOARD_IDL__
  28. #include <Keyboard.idl>
  29. #endif
  30. #ifndef __NAMEREGISTRY_IDL__
  31. #include <NameRegistry.idl>
  32. #endif
  33.  
  34. #ifdef __SOMIDL__
  35.  
  36. #if FOR_SYSTEM8_PREEMPTIVE
  37. /*
  38. ####################################################################################
  39.         Constructor/Destructor Messages
  40. ####################################################################################
  41. */
  42. typedef OpaquePtr KeyboardPluginInitPtr;
  43. /* normal termination*/
  44. typedef OpaquePtr KeyboardPluginFreePtr;
  45. /* error condition termination*/
  46. typedef OpaquePtr KeyboardPluginEjectPtr;
  47. /*
  48. ####################################################################################
  49.         Control Messages
  50. ####################################################################################
  51. */
  52. typedef OpaquePtr KeyboardPluginStartI0Ptr;
  53. typedef OpaquePtr KeyboardPluginHaltIOPtr;
  54. /*
  55. ####################################################################################
  56.         Functional Messages
  57. ####################################################################################
  58. */
  59. typedef OpaquePtr KeyboardPluginValidateHardwarePtr;
  60. typedef OpaquePtr KeyboardPluginGetModifierKeyStatePtr;
  61. typedef OpaquePtr KeyboardPluginLEDStatusPtr;
  62. typedef OpaquePtr KeyboardPluginSetLEDPtr;
  63. typedef OpaquePtr KeyboardPluginGetNextKeyPtr;
  64. typedef OpaquePtr KeyboardPluginGetDeviceModePtr;
  65. typedef OpaquePtr KeyboardPluginSetDeviceModePtr;
  66. /*
  67. ####################################################################################
  68.         Dispatch Table Definition
  69. ####################################################################################
  70. */
  71. typedef SOMLargeStruct            KeyboardPluginDispatchTable; /* Derived from a struct of 50 bytes in size */
  72.  
  73. #endif
  74.  
  75. #endif /* __SOMIDL__ */
  76.  
  77. #endif /* __KEYBOARDPLUGIN_IDL__ */
  78.  
  79.